home *** CD-ROM | disk | FTP | other *** search
- ;
- ; TrueDate (Archive "True Date" Stamp Utility) Configuration File
- ; ----------------------------------------------------------------------
- ;
-
- ;
- ; Work Directory
- ;
- ; This directory must be defined. It is simply a "staging" area when
- ; analyzing the contents of an archive, and will be emptied of any
- ; temporary files after TrueDate completes.
- ;
-
- WorkDirectory c:\tmp
-
- ;
- ; Logging definitions
- ;
- ; Log messages are ranked between 1 to 4, where 1 is the most important
- ; type of message (usually a fatal error of some sort), and 4 is the
- ; most extraneous (an informational message of some sort). This gives
- ; you control over how verbose to make the status log.
- ;
- ; Each message in the log file is preceded by a special symbol indicating
- ; it's level of importance as follows:
- ;
- ; LogLevel Characters That Precede Included Entries
- ;
- ; 1 !
- ; 2 *
- ; 3 +
- ; 4 :
- ;
-
- Log ; [No]Log - Log process information to log
- ; file
-
- LogLevel 3 ; Level of logging where 1 is the most
- ; minimal amount of information, and 4 is
- ; the most detailed.
-
- LogFile c:\bbs\logs\truedate.log ; Name of the log file (MUST be defined to
- ; use the logging feature.) There is no
- ; default.
-
- ;
- ; Archiver Information
- ;
- ; The archivers used to analyze compressed files may be defined below. Each
- ; Archiver Definition must be defined in the following order:
- ;
- ; ArchiveExtension
- ; ArchiveList
- ; ArchiveListFormat
- ;
- ; All keywords must be kept together in the above order, with the last
- ; keyword being ArchiveListFormat.
- ;
- ; The following macros can be used in the definitions. All macros are
- ; CASE-SENSATIVE!
- ;
- ; ArchiveList macros:
- ;
- ; %a : Translates to the name of the archive.
- ;
- ; ArchiveListFormat macros:
- ;
- ; MMM : 3 letter name of month (Jan, Feb, etc.)
- ; mm : 2 digit number of the month (1-12)
- ; yy : Last two digits of the year (00-99)
- ; dd : Day of the month (1-31)
- ; hh : Hours in 24 hour format (0-23)
- ; HH : Hours in 12 hour format (0-12)
- ; ii : Minutes (0-59)
- ; ss : Seconds (0-59)
- ; X : am/pm indicator (A or P)
- ; zzz..zz : uncompressed size of the file (must have at least 5 z's)
- ; ffffffffffff : name of the file in the archive (must have at least 12 f's)
- ;
- ; Please note: Do not use full path names on the archives. ArcAnal will
- ; search the current directory or PATH variable to find
- ; the archiving program.
- ;
-
- ArchiveExtension ZIP
- ArchiveList "unzip -v %a"
- ArchiveListFormat "zzzzzzz mm-dd-yy hh:ii ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
-
- ;ArchiveExtension ZIP
- ;ArchiveList "pkzip -v %a"
- ;ArchiveListFormat "zzzzzzz mm-dd-yy hh:ii ffffffffffff"
-
- ArchiveExtension ARJ
- ArchiveList "unarj l %a"
- ArchiveListFormat "ffffffffffff zzzzzzzzzz yy-mm-dd hh:ii:ss"
-
- ArchiveExtension ARC
- ArchiveList "arc v %a"
- ArchiveListFormat "ffffffffffff zzzzzzzz dd MMM yy HH:iiX"
-
- ArchiveExtension LZH
- ArchiveList "lh /o v %a"
- ArchiveListFormat " zzzzzzzz yy-mm-dd hh:ii:ss ffffffffffff"
-
- ArchiveExtension ZOO
- ArchiveList "zoo -list %a"
- ArchiveListFormat "zzzzzzzz dd MMM yy hh:ii:ss ffffffffffff"
-
-
- ;
- ; Miscellaneous Definitions
- ; -------------------------
- ;
-
- NoQuiet ; [No]Quiet - Prevents output to
- ; standard out (the screen, normally)
- ; except for the logo.
-